コレクション内の指定したインデックスに複数の項目を挿入します。
シンタックス
'宣言
Protected Overridable Sub InsertItems( _
ByVal As System.Integer, _
ByVal As System.Collections.Generic.IEnumerable(Of T) _
)
protected virtual void InsertItems(
System.int ,
System.Collections.Generic.IEnumerable<T>
)
パラメータ
- index
- 項目を挿入する位置の 0 から始まるインデックス。
- value
- コレクションに追加するオブジェクトを含む System.Collections.Generic.IEnumerable`1。
例外
例外 | 解説 |
System.ArgumentNullException | 指定された値が null 参照 (Visual Basicでは Nothing) です。 |
System.InvalidOperationException |
コレクションがロックされています。 がコレクションのサイズを超えています。item が null 参照 (Visual Basicでは Nothing) です。
|
System.ArgumentException | に null 参照 (Visual Basicでは Nothing) が含まれます。 |
参照